+2006-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * url-handlers.el (url-file-local-copy): Tell url-copy-file that the
+ dest file will already exist.
+
2006-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
* url-util.el (url-hexify-string): Only utf-8 encode if it's
Returns the name of the local copy, or nil, if FILE is directly
accessible."
(let ((filename (make-temp-file "url")))
- (url-copy-file url filename)
+ (url-copy-file url filename 'ok-if-already-exists)
filename))
(defun url-insert (buffer &optional beg end)